Search results

Types

Classes
Interfaces
Enums
Functions
Type aliases
Constants

Members

Properties
Methods
Getters
Setters
Enum members
Show privates

Other

In this module only

Const Routes

Defined in endpoints

Tools.URIEncodeWrap({
  URL: Urlsenum Urlsdetritus-client-rest/Urls.STABLE.slice(0, -1),
  INDEX:
    '/',
  INDEX_WORD:
    '/index',
  INDEX_BUCKET: (bucketId: string): string =>
    `/index/${bucketId}`,
  404:
    '/404',
  APP:
    '/app',
  ACKNOWLEDGEMENTS:
    '/acknowledgements',
  ACTIVITY:
    '/activity',
  APPLICATION_LIBRARY:
    '/library',
  APPLICATION_LIBRARY_INVENTORY:
    '/library/inventory',
  APPLICATION_LIBRARY_ACTION: (gameId: string, action: string): string =>
    `/library/${gameId}/${action}`,
  APPLICATION_STORE:
    '/store',
  APPLICATION_STORE_BROWSE:
    '/store/browse',
  APPLICATION_STORE_BROWSE_SORT: (sort: string): string =>
    `/store/browse?genre=all&sort=${sort}`,
  APPLICATION_STORE_LISTING_APPLICATION: (applicationId: string, slug?: string): string =>
    `/store/applications/${applicationId}` + ((slug) ? `/${slug}` : ''),
  APPLICATION_STORE_LISTING_SKU: (skuId: string, slug?: string): string =>
    `/store/skus/${skuId}` + ((slug) ? `/${slug}` : ''),
  AUTHORIZE_IP: